home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga CD-ROM Collection
/
Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso
/
auge4000
/
46
/
lib
/
extra
/
strupper.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-06-20
|
226b
|
22 lines
/*
* Convert string to upper case
*/
char *
strupper(str)
char *str;
{
char c;
char *base = str;
while (c = *str) {
if (c >= 'a' && c <= 'z')
*str = c + ('A' - 'a');
++str;
}
return(base);
}